crypto/internal/fips140/aes.CTR.offset (field)

8 uses

	crypto/internal/fips140/aes (current package)
		ctr.go#L18: 	offset     uint64 // for XORKeyStream only
		ctr.go#L37: 		offset: 0,
		ctr.go#L42: 	c.XORKeyStreamAt(dst, src, c.offset)
		ctr.go#L45: 	c.offset, carry = bits.Add64(c.offset, uint64(len(src)), 0)
		ctr.go#L54: 	if remainder := c.offset % BlockSize; remainder != 0 {
		ctr.go#L56: 		c.offset, carry = bits.Add64(c.offset, BlockSize-remainder, 0)